
/*fixed-contact*/
.fixed-contact-wrap {
	z-index: 999;
	position: fixed;
	right: 12px;
	top: 50%;
	width: 60px;
	margin-top: -90px;
	overflow: hidden;
	border-radius: 12px;
	opacity: 0;
	transition: all .4s;
	transform: translateX(95px);
	-webkit-transform: translateX(95px);
	-moz-transform: translateX(95px);
}

.fixed-contact-wrap ul{
	margin: 0;
	padding: 0;
	border: 0;
	box-sizing: border-box;
	-moz-box-sizing: border-box;
	-webkit-box-sizing: border-box;
	-webkit-tap-highlight-color: transparent;
}

.fixed-contact-wrap.show {
	transform: none;
	opacity: 1;
}

.fixed-contact-wrap.active {
	width: 215px;
}

.fixed-contact-wrap li {
	position: relative;
	height: 60px;
	background: #e60012;
	overflow: hidden;
}

.fixed-contact-wrap.active li {
	overflow: inherit;
}

.fixed-contact-wrap li a {
	position: relative;
	z-index: 1000;
	display: block;
}

.fixed-contact-wrap li i {
	z-index: 1000;
	position: absolute;
	right: 0;
	display: block;
	width: 60px;
	height: 60px;
	transition: all .4s;
}

.fixed-contact-wrap.active li:after {
	z-index: 1001;
	content: '';
	position: absolute;
	bottom: 0;
	left: 50%;
	display: block;
	width: 80%;
	height: 1px;
	margin-left: -40%;
	background: rgba(255,255,255,.1);
}

.fixed-contact-wrap.active li:last-child:after {
	display: none;
}


.fixed-contact-wrap .phone i {
	background: #e60012 url(../images/fixed-contact-tel.png) no-repeat center center;
	border-top-left-radius: 30px;
	-moz-border-top-left-radius: 30px;
	-webkit-border-top-left-radius: 30px;
	border-top-right-radius: 30px;
	-moz-border-top-right-radius: 30px;
	-webkit-border-top-right-radius: 30px;
}

.fixed-contact-wrap .qq i {
	background: #e60012 url(../images/fixed-contact-qq.png) no-repeat center center;
}

.fixed-contact-wrap .wechat i {
	background: #e60012 url(../images/fixed-contact-wechat.png) no-repeat center center;
}

.fixed-contact-wrap .back-top i {
	background: #e60012 url(../images/fixed-contact-top.png) no-repeat center center;
}

.fixed-contact-wrap.active .back-top i {
	border-bottom-left-radius: 0;
	-moz-border-bottom-left-radius: 0;
	-webkit-border-bottom-left-radius: 0;
}

.fixed-contact-wrap li strong {
	position: absolute;
	top: 0;
	right: -145px;
	display: block;
	width: 125px;
	padding: 0 15px 0 0;
	font: normal 16px/60px 'gotham-medium';
	color: #fff;
	background: #e60012;
	white-space: nowrap;
	transition: all .4s;
}

.fixed-contact-wrap.active li strong {
	right: 60px;
}

.fixed-contact-wrap.black li {
	background: #111;
}

.fixed-contact-wrap.black li strong {
	background: #111;
}


/* 手机端隐藏*/
/*
@media(max-width:480px){
.fixed-contact-wrap {
	display:none;
}
}
*/
